body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #e67da7;
    color: #1d1d1d;
    margin: 10px;
    padding: 20px;
    background-image: radial-gradient(circle, #fff 10%, transparent 10%), 
                      radial-gradient(circle, #fff 10%, transparent 10%);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
}


.header h1 {
    color: #ff1493;
    text-align: center;
    font-size: 3.5em;
    text-shadow: 3px 3px 0 #ff69b4, 
                 6px 6px 0 #ffb6c1;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

#sub_header h2 {
    background-color: #ff69b4;
    color: white;
    padding: 15px;
    border-radius: 20px;
    text-align: center;
    font-size: 1.8em;
    box-shadow: 5px 5px 0 #ff1493;
    margin: 20px 0;
}

.body h4 {
    background-color: white;
    padding: 20px;
    border: 3px dashed #ff1493;
    border-radius: 15px;
    font-size: 1.3em;
    line-height: 1.5;
    margin: 20px 0;
}



@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


#fecha {
    display: inline-block;
    background-color: #ff1493;
    color: white;
    padding: 10px 20px;
    margin: 10px 5px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 3px 3px 0 #ff69b4;
}




#hora {
    display: inline-block;
    background-color: #ff1493;
    color: white;
    padding: 10px 20px;
    margin: 10px 5px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 3px 3px 0 #ff69b4;
}

#fecha:hover ,#hora:hover{
    transform: scale(1.05);
    box-shadow: #1d1d1d;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}


a {
display:inline;
 background-color: #eee;
 border: 1px;
 padding: 2px;
 font-size: 20px;
 width: 5px;
 border-radius: 50px;
 color: #ff69b4;
 box-shadow: 0 0.4rem #dfd9d9;
 cursor: pointer;

}

a:active {
 color: rgb(255, 255, 255);
 box-shadow: 0 0.2rem #dfd9d9;
 transform: translateY(0.2rem);
}

a:hover:not(:disabled) {
 background: #ffb6c1;
    margin-bottom: 10px;;
 color: white;
 text-shadow: 0 0.1rem #bcb4b4;
}

a:disabled {
 cursor: auto;
 color: rgb(255, 255, 255);
}




.Tomas, .fungi {
    background-color: #ffb6c1;
    padding: 15px;
    margin: 20px 0;
    border-left: 5px solid #ff1493;
    border-radius: 0 15px 15px 0;
    font-style: italic;
}



footer {
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
    font-size: 1.2em;
    color: #ff1493;
    padding: 10px;
    border-top: 2px dotted #ff69b4;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.Tomas:hover, .fungi:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #f16bae;
    transition: all 0.5s ease;
}